home *** CD-ROM | disk | FTP | other *** search
- @echo off
- if .%1 == . goto :error
- cls
- echo V_UNINST.BAT
- echo ------------
- echo .
- echo This batch file will REMOVE VPIC from your %1 drive.
- echo ^^^^^^
- echo .
- echo Do you wish to remove VPIC from your %1 drive?
- echo .
- echo PRESS 'Y' FOR YES
- echo 'N' FOR NO
- echo .
- \utils\ask -t20 -u Your Response?:
- if ERRORLEVEL 89 goto yes
- goto quit
- :yes
- echo .
- echo UN-INSTALLING VPIC...
- echo .
- cd c:\
- utils\killdir %1\VPIC r auto > nul
- goto quit
- :error
- echo "Usage: v_uninst <DRIVE LETTER:>"
- echo .
- echo Example: to uninstall VPIC from your C: drive, use "V_UNINST C:"
- :quit